Method Borrowing: When you have a method defined on one object, but you want to use it on another object that doesn't have that method, you can use `call` or `apply` to borrow the method from the first object and execute it in the context of the second object.